home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 2: Gray Edwards.iso / pc / assets / gray-soundtrack.dcr / 00042_backward.ls < prev    next >
Encoding:
Text File  |  2001-07-21  |  636 b   |  30 lines

  1. global whichTrack, isPlaying
  2.  
  3. on mouseDown
  4.   puppetSound(2, "Clicker")
  5.   set the blend of sprite 27 to 30
  6. end
  7.  
  8. on mouseUp
  9.   if whichTrack > 1 then
  10.     whichTrack = whichTrack - 1
  11.   else
  12.     whichTrack = 1
  13.   end if
  14.   set the memberNum of sprite 24 to the number of member ("track0" & whichTrack)
  15.   set the memberNum of sprite 25 to the number of member ("title0" & whichTrack)
  16.   set the memberNum of sprite 26 to the number of member ("artist0" & whichTrack)
  17.   if isPlaying = 1 then
  18.     puppetSound(1, "sound0" & whichTrack)
  19.   end if
  20.   set the blend of sprite 27 to 0
  21. end
  22.  
  23. on mouseEnter
  24.   cursor(280)
  25. end
  26.  
  27. on mouseLeave
  28.   cursor(-1)
  29. end
  30.